.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("../img/1 (3).jpg");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("../img/1 (3).jpg");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}





.con_features_area {
    padding: 40px 0;
    background: #fff;
}

.display-flex-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.con_features_item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-right: 1px solid #ddd; /* Desktop par 4 ke beech ki lines */
}

/* Akhiri item ki line hatao desktop par */
@media (min-width: 992px) {
    .col-lg-3:last-child .con_features_item {
        border-right: none;
    }
}

.media_icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.media_icon img {
    max-width: 80%;
}

.media-body h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #333;
}

.media-body p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* --- Responsive Settings --- */

/* Tablet (2 Items per row) */
@media (max-width: 991px) {
    .col-md-6 {
        border-right: none;
        margin-bottom: 20px;
    }
}

/* Mobile (Ek line mein 2 items ya 1 depend on space) */
@media (max-width: 576px) {
    .con_features_item {
        flex-direction: column; /* Icon upar text niche (Optional) */
        text-align: center;
        border-right: none;
    }
    .media_icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .col-6 {
        width: 50%; /* Mobile par 2-2 show honge */
    }
}






.mc16_section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.mc16_container {
    max-width: 950px;
    margin: auto;
    padding: 0 15px;
}

/* Small Top Title */
.mc16_small_title {
    font-size: 18px;
    color: #f9b800;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Main Title */
.mc16_main_title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

/* Highlight Yellow Bar */
.mc16_highlight_box {
    display: inline-block;
    background: #f9b800;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 30px;
}

/* Paragraph Text */
.mc16_desc_text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .mc16_main_title {
        font-size: 26px;
    }

    .mc16_highlight_box {
        font-size: 13px;
        padding: 8px 12px;
    }

    .mc16_desc_text {
        font-size: 15px;
    }
}





.mcstrip_section {
    padding: 90px 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.mcstrip_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    text-align: center;
}

/* Small Title */
.mcstrip_small_title {
    font-size: 16px;
    color: #f9b800;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Main Title */
.mcstrip_main_title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

/* Subtitle */
.mcstrip_subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Grid Layout */
.mcstrip_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.mcstrip_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: left;
}

.mcstrip_card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.mcstrip_card p {
    padding: 15px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Hover Effect */
.mcstrip_card:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 992px) {
    .mcstrip_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mcstrip_grid {
        grid-template-columns: 1fr;
    }

    .mcstrip_main_title {
        font-size: 24px;
    }

    .mcstrip_subtitle {
        font-size: 14px;
    }
}




.cleaning-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cleaning-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.cleaning-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cleaning-section .sub-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* GRID */
.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX DESIGN */
.cleaning-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.cleaning-box:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.cleaning-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT */
.cleaning-box p {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cleaning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cleaning-grid {
        grid-template-columns: 1fr;
    }

    .cleaning-section h2 {
        font-size: 24px;
    }
}



